pow

pure function pow(exponent: integer): big_integer

Raises this big_integer to the power of the given exponent. Can be used in a database at-expression.

  1. The exponent cannot be negative.

  2. Error on overflow, if the result is out of integer or big_integer range.

  3. If the exponent is 0, the result is always 1; if the exponent is 1, the result is the original value.

Since

0.13.6

Parameters

exponent

The exponent.